home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / terminal / tsth_140 / md2code.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-30  |  493 b   |  14 lines

  1.  
  2. /* MD2.H - header file for MD2.C */
  3.  
  4. typedef struct {
  5.   unsigned char state[16];                                 /* state */
  6.   unsigned char checksum[16];                           /* checksum */
  7.   unsigned int count;                 /* number of bytes, modulo 16 */
  8.   unsigned char buffer[16];                         /* input buffer */
  9. } MD2_CTX;
  10.  
  11. void MD2Init(MD2_CTX *);
  12. void MD2Update(MD2_CTX *, unsigned char *, unsigned int);
  13. void MD2Final(unsigned char [16], MD2_CTX *);
  14.